cmake_minimum_required(VERSION 2.6)

project(hello)

find_package(YARP)

include_directories(${YARP_LIBRARIES})

add_executable(hello hello.cpp)

target_link_libraries(hello ${YARP_LIBRARIES})



